Java Virtual Machine - перевод на Английский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Java Virtual Machine - перевод на Английский

RUNTIME ENVIRONMENT THAT CAN EXECUTE JAVA BYTECODE AS A RESULT OF COMPILING COMPUTER PROGRAMS WRITTEN IN THE JAVA PROGRAMMING LANGUAGE
Jvm; JVM; Java VM; JavaVM; Java vm; Java sandbox; C to Java byte-code compiler; Java runtime system; C to Java Virtual Machine compilers; JSR 924; Java Virtual Machine heap; JVM heap; Permanent Generation; Jvm architecture; Permanent generation; Permgen; PermGen; Jucheck.exe process; Java Virtual Machine; Java Virtual Machine Specification; Java runtime; TeaVM; Bck2Brwsr; Java-to-JavaScript compilers
  • Overview of a Java virtual machine (JVM) architecture based on The Java Virtual Machine Specification Java SE 7 Edition

Java Virtual Machine         
Java Virtual Machine, programma che funge da interprete fra il bytecode Java e uno specifico sistema operativo
Virtual Machine         
  • Logical diagram of full virtualization
SOFTWARE THAT EMULATES AN ENTIRE COMPUTER, OFTEN USED TO PROVIDE A DIFFERENT OPERATING SYSTEM OR HARDWARE ARCHITECTURE THAN THE HOST SYSTEM
Virtual machines; Virtual Machine; Virtual operating system; Amiga virtual machine; Overlay computer; Virtual processing; Virtual platform; Virtual platforms; Application virtual machine; Virtual Platform; Process virtual machine; Virtual computer; Systems virtualization; Virtual computing; Managed runtime environment
VM (Macchina simulata, zona di memoria protetta contenente un programma multi-applicativo nella modalità- protected)
Java Development Kit         
IMPLEMENTATION OF EITHER ONE OF THE JAVA PLATFORM, STANDARD EDITION, JAVA PLATFORM, ENTERPRISE EDITION, OR JAVA PLATFORM, MICRO EDITION PLATFORMS
Java 2 SDK; JDK; J2SDK; Java jdk; Java 2 Software Development Kit; Java SDK; Java Development Toolkit; JDK 1.2
Strumenti per lo sviluppo in lingua Java (informatica), JDK

Определение

Java Virtual Machine
<language, architecture> (JVM) A specification for software which interprets Java programs that have been compiled into byte-codes, and usually stored in a ".class" file. The JVM instruction set is stack-oriented, with variable instruction length. Unlike some other instruction sets, the JVM's supports object-oriented programming directly by including instructions for object method invocation (similar to subroutine call in other instruction sets). The JVM itself is written in C and so can be ported to run on most platforms. It needs thread support and I/O (for dynamic class loading). The Java byte-code is independent of the platform. There are also some hardware implementations of the JVM. {Specification (http://javasoft.com/docs/books/vmspec/html/VMSpecTOC.doc.html)}. {Sun's Java chip (http://news.com/News/Item/0,4,9328,00.html)}. [Documentation? Versions?] (2000-01-03)

Википедия

Java virtual machine

A Java virtual machine (JVM) is a virtual machine that enables a computer to run Java programs as well as programs written in other languages that are also compiled to Java bytecode. The JVM is detailed by a specification that formally describes what is required in a JVM implementation. Having a specification ensures interoperability of Java programs across different implementations so that program authors using the Java Development Kit (JDK) need not worry about idiosyncrasies of the underlying hardware platform.

The JVM reference implementation is developed by the OpenJDK project as open source code and includes a JIT compiler called HotSpot. The commercially supported Java releases available from Oracle are based on the OpenJDK runtime. Eclipse OpenJ9 is another open source JVM for OpenJDK.